home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mint96sb.zoo / src / sproto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-05  |  979 b   |  33 lines

  1. /*
  2.  * C declarations for functions defined in .s files
  3.  */
  4.  
  5. /* context.s */
  6. long ARGS_ON_STACK build_context P_((CONTEXT *sav, int fmt));
  7. long ARGS_ON_STACK save_context P_((CONTEXT *sav));
  8. void ARGS_ON_STACK restore_context P_((CONTEXT *sav));
  9.  
  10. /* cpu.s */
  11. void ARGS_ON_STACK cpush P_((const void *base, long size));
  12.  
  13. /* intr.s */
  14. void ARGS_ON_STACK reboot P_((void));
  15. short ARGS_ON_STACK spl7 P_((void));
  16. void ARGS_ON_STACK spl P_((short));
  17. void ARGS_ON_STACK new_rwabs();
  18. void ARGS_ON_STACK new_mediach();
  19. void ARGS_ON_STACK new_getbpb();
  20.  
  21. /* quickzer.s */
  22. void ARGS_ON_STACK quickzero P_((char *place, long size));
  23.  
  24. /* quickmov.s */
  25. void ARGS_ON_STACK quickmove P_((void *dst, void *src, long nbytes));
  26.  
  27. /* syscall.s */
  28. char * ARGS_ON_STACK lineA0 P_((void));
  29. void ARGS_ON_STACK call_aes P_((short **));
  30. long ARGS_ON_STACK callout P_((long, ...));
  31. long ARGS_ON_STACK callout1 P_((long, int));
  32. long ARGS_ON_STACK callout2 P_((long, int, int));
  33.